home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / zmdm / zmdm.pat < prev    next >
Text File  |  1993-06-26  |  1KB  |  45 lines

  1. Article 3588 of comp.sys.atari.st:
  2. Path: nvpna1!prle!philmds!mcvax!seismo!mimsy!oddjob!gargoyle!ihnp4!cbosgd!cwruecmp!bammi
  3. From: bammi@cwruecmp.UUCP (Jwahar R. Bammi)
  4. Newsgroups: comp.sys.atari.st
  5. Subject: ZMDM update
  6. Message-ID: <2225@cwruecmp.UUCP>
  7. Date: 21 Aug 87 00:31:52 GMT
  8. Reply-To: bammi@cwruecmp.UUCP (Jwahar R. Bammi)
  9. Distribution: world
  10. Organization: Case Western Reserve University
  11. Lines: 30
  12.  
  13.  
  14. Thanks to ncoast!bsrjr and mist!hakanson for pointing out the
  15. following bug that crept into ZMDM. At baud rates <= 2400 baud, when
  16. transmitting a file using zmodem protocol, the count that is displayed
  17. is incorrect. The files however are transferred fine, just the visual
  18. counter on the screen shows the counts incorrectly.
  19.  
  20. To fix, patch SZ.C as follows (add lines marked with `+'):
  21.  
  22. *** osz.c    Thu Aug 20 19:14:35 1987
  23. --- sz.c    Thu Aug 20 19:18:27 1987
  24. ***************
  25. *** 1190,1195 ****
  26. --- 1190,1200 ----
  27.               e = ZCRCG;
  28.           zsdata(secbuf, c, e);
  29.           Txpos += c;
  30. +         if(e == ZCRCG)
  31. +         {
  32. +             tcount += c;
  33. +             lreport(tcount);
  34. +         }
  35.   
  36.           if (e == ZCRCW)
  37.               goto waitack;
  38. -- 
  39. usenet: {decvax,cbosgd,sun}!cwruecmp!bammi    jwahar r. bammi
  40. csnet:       bammi@cwru.edu
  41. arpa:        bammi@cwru.edu
  42. compuServe:  71515,155
  43.  
  44.  
  45.